home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / compiler.h < prev    next >
C/C++ Source or Header  |  1999-03-14  |  3KB  |  80 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: compiler.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer  
  8. // File Creation Date: 10/28/1996  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. This file contains macros used to set compiler specific flags.
  32. It was developed to make porting code easier by centralizing
  33. all the complier dependent flags.
  34. */
  35. // ----------------------------------------------------------- //   
  36. #ifndef __COMPILER_HPP
  37. #define __COMPILER_HPP
  38.  
  39. // Microsoft Visual C/C++ Version 1.5
  40. // ===============================================================
  41. // #ifndef __MSVC15__
  42. // #define __MSVC15__
  43. // #endif  
  44.  
  45. // Microsoft Visual C/C++ Version 4.0
  46. // ===============================================================
  47. // #ifndef __MSVC40__
  48. // #define __MSVC40__
  49. // #endif  
  50.  
  51. // DJGPP gcc/g++ Version 2.7.2.1
  52. // ===============================================================
  53. // #ifndef __DJGPP2721__
  54. // #define __DJGPP2721__
  55. // #endif 
  56.  
  57. // GNU gcc/g++ Version 2.7
  58. // ===============================================================
  59. // #ifndef __GCC27__
  60. // #define __GCC27__
  61. // #endif 
  62.  
  63. // Generic UNIX CC Compiler
  64. // ===============================================================
  65. // #ifndef __CC__
  66. // #define __CC__
  67. // #endif 
  68.  
  69. // (H)ewlett (P)ackard UNIX CC Compiler
  70. // ===============================================================
  71. // #ifndef __HPCC__
  72. // #define __HPCC__
  73. // #endif 
  74.  
  75. #endif  // __COMPILER_HPP //
  76. // ----------------------------------------------------------- // 
  77. // ------------------------------- //
  78. // --------- End of File --------- //
  79. // ------------------------------- //
  80.